home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 3 / CD ACTUAL 3.iso / linux / system / startppp.000 / startppp / Startppp_v0.80 / Makefile < prev    next >
Encoding:
Makefile  |  1995-08-15  |  1.2 KB  |  42 lines

  1. #
  2. # Startppp
  3. # Copyright (C) 1995  Matthias Ott 
  4. #  (msott@cip.informatik.uni-erlangen.de)
  5. # This program is free software; you can redistribute it and/or
  6. # modify it under the terms of the GNU Library General Public
  7. # License as published by the Free Software Foundation; either
  8. # version 2 of the License, or (at your option) any later version.
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. # Library General Public License for more details.
  13. # You should have received a copy of the GNU Library General Public
  14. # License along with this program; if not, write to the Free
  15. # Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. #
  17.  
  18. CC    =gcc
  19. CLIBS    =-L/usr/X11/lib -ltk -ltcl -lm -lX11
  20. CFLAGS    =-O2
  21.  
  22. all:    startppp_interp
  23.  
  24. startppp_interp:    tkAppInit.o Main.o Time.o Modem.o
  25.         $(CC) $(CFLAGS) tkAppInit.o Main.o Time.o Modem.o $(CLIBS) -o startppp_interp
  26.  
  27. %.o:        %.c
  28.         $(CC) $(CFLAGS) -c $<
  29. clean:
  30.     rm -f startppp_interp 
  31.     rm -f Main.o Time.o Modem.o tkAppInit.o 
  32. myclean:
  33.     rm -f startppp_interp
  34.     rm -f Main.o Time.o Modem.o
  35.  
  36. install:
  37.     startppp_install
  38.